type runtime.mheap

24 uses

	runtime (current package)
		arena.go#L995: func (h *mheap) allocUserArenaChunk() *mspan {
		malloc.go#L651: func (h *mheap) sysAlloc(n uintptr, hintList **arenaHint, arenaList *[]arenaIdx) (v unsafe.Pointer, size uintptr) {
		malloc.go#L899: func (h *mheap) enableMetadataHugePages() {
		mgcsweep.go#L96: func (h *mheap) nextSpanForSweep() *mspan {
		mheap.go#L64: type mheap struct {
		mheap.go#L262: var mheap_ mheap
		mheap.go#L549: 	h := (*mheap)(vh)
		mheap.go#L791: func (h *mheap) init() {
		mheap.go#L832: func (h *mheap) reclaim(npage uintptr) {
		mheap.go#L912: func (h *mheap) reclaimChunk(arenas []arenaIdx, pageIdx, n uintptr) uintptr {
		mheap.go#L1006: func (h *mheap) alloc(npages uintptr, spanclass spanClass) *mspan {
		mheap.go#L1039: func (h *mheap) allocManual(npages uintptr, typ spanAllocType) *mspan {
		mheap.go#L1048: func (h *mheap) setSpans(base, npage uintptr, s *mspan) {
		mheap.go#L1072: func (h *mheap) allocNeedsZero(base, npage uintptr) (needZero bool) {
		mheap.go#L1137: func (h *mheap) tryAllocMSpan() *mspan {
		mheap.go#L1160: func (h *mheap) allocMSpanLocked() *mspan {
		mheap.go#L1192: func (h *mheap) freeMSpanLocked(s *mspan) {
		mheap.go#L1224: func (h *mheap) allocSpan(npages uintptr, typ spanAllocType, spanclass spanClass) (s *mspan) {
		mheap.go#L1439: func (h *mheap) initSpan(s *mspan, typ spanAllocType, spanclass spanClass, base, npages uintptr) {
		mheap.go#L1547: func (h *mheap) grow(npage uintptr) (uintptr, bool) {
		mheap.go#L1632: func (h *mheap) freeSpan(s *mspan) {
		mheap.go#L1676: func (h *mheap) freeManual(s *mspan, typ spanAllocType) {
		mheap.go#L1696: func (h *mheap) freeSpanLocked(s *mspan, typ spanAllocType) {
		mheap.go#L1761: func (h *mheap) scavengeAll() {